home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1993 / MacHack 1993.toast / MacHack™ 1987-1992 / MacHack™ '90 / Other Stuff / Demos ƒ / Demo AppMaker / Demo AppMaker™ / Demo AppMaker™.rsrc / TmCT_107_ModelessDialog < prev    next >
Encoding:
Text File  |  1990-03-23  |  827 b   |  27 lines

  1. /* %filename% -- modeless dialog methods */
  2. /* Created %date% %time% by AppMaker */
  3.  
  4. /*    This module overrides the AppMaker-generated code in z%dlogname%.%        %*/
  5. /*    It provides a place for you to add your own code and still be able to    */
  6. /*    generate code for new changes to the user interface.  This module will    */
  7. /*    not be regenerated by AppMaker unless you delete it.  Its superclass,    */
  8. /*    z%dlogname%, may be regenerated to handle user interface changes%        %*/
  9. /*    without losing your hand-coded changes to this module.                    */
  10.  
  11. #include <Commands.h>
  12. #include "ResourceDefs.h"
  13. #include "%dlogname%.h"
  14.  
  15. %for each item gen Make%
  16. /*----------*/
  17. void    C%dlogname%::DoCommand    (long        theCommand)
  18. {
  19.     switch (theCommand) {
  20.         default:
  21.                 inherited::DoCommand (theCommand);
  22.             break;
  23.     } /* switch */
  24.  
  25. } /* DoCommand */
  26.     
  27. /* %unitname% */